home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Gooey 4.xpl < prev    next >
Text File  |  2000-08-07  |  2KB  |  74 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="4"
  4. "UIPATH"="Internet\Instant Messaging\GOOEY"
  5. "NAME"="Proxy Settings"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.04"
  8. "TEXT 1"="Proxy URL"
  9. "TEXT 2"="Proxy Port"
  10. "TEXT 3"="Proxy User"
  11. "TEXT 4"="Proxy Password"
  12. "DESCRIPTION 1"="You can use this plug-in to change the proxy options for GOOEY."
  13. "DESCRIPTION 2"="NOTE: In order to apply these changes, you need to activate "Enable Proxy Server" option inside "GOOEY General Options"."
  14. "DESCRIPTION 3"="Gooey may be obtained at http://www.gooey.com/"
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19. "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
  20.  
  21.  
  22. sPath="HKEY_CURRENT_USER\Software\Hypernix\Gooey\Network\"
  23. sV1="ProxyServer"
  24. sV2="PortNumber"
  25. sV3="ProxyUserName"
  26. sV4="ProxyUserPassword"
  27.  
  28. Sub Plugin_Initialize 
  29.  if RegPathExists(sPath) then
  30.     s=RegReadValue(sPath & sV1)
  31.     SetUIElement 1,s
  32.  
  33.     s=RegReadValue(sPath & sV2)
  34.     SetUIElement 2,s
  35.  
  36.     s=RegReadValue(sPath & sV3)
  37.     SetUIElement 3,s
  38.  
  39.     s=RegReadValue(sPath & sV4)
  40.     SetUIElement 4,s
  41.  
  42.  else
  43.     Disable
  44.  end if
  45. End Sub
  46.  
  47.  
  48. Sub Plugin_CheckData(ElementIndex)
  49. End Sub
  50.  
  51.  
  52.  
  53. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  54.  s=GetUIElement(1)
  55.  Call RegWriteValue(sPath & sV1,s,1)
  56.  
  57.  s=GetUIElement(2)
  58.  Call RegWriteValue(sPath & sV2,s,1)
  59.  
  60.  s=GetUIElement(3)
  61.  Call RegWriteValue(sPath & sV3,s,1)
  62.  
  63.  s=GetUIElement(4)
  64.  Call RegWriteValue(sPath & sV4,s,1)
  65.  
  66. End Sub
  67.  
  68.  
  69. Sub Plugin_Terminate 
  70. End Sub
  71.  
  72.  
  73.  
  74.